From 224cfe07634d71419d4a34b58bfdebd4109858a9 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Wed, 12 Nov 2003 19:58:43 +0000 Subject: [PATCH] Correct the definition of the values. (#123361, Marco Pesenti Gritti) Wed Nov 12 20:57:50 2003 Matthias Clasen * gtk/gtkicontheme.h (enum GtkIconLookupFlags): Correct the definition of the values. (#123361, Marco Pesenti Gritti) --- ChangeLog | 5 +++++ ChangeLog.pre-2-10 | 5 +++++ ChangeLog.pre-2-4 | 5 +++++ ChangeLog.pre-2-6 | 5 +++++ ChangeLog.pre-2-8 | 5 +++++ gtk/gtkicontheme.h | 6 +++--- 6 files changed, 28 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 18580cabaa..5cc958b85b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Wed Nov 12 20:57:50 2003 Matthias Clasen + + * gtk/gtkicontheme.h (enum GtkIconLookupFlags): Correct + the definition of the values. (#123361, Marco Pesenti Gritti) + Wed Nov 12 20:54:02 2003 Matthias Clasen * gdk/gdkkeyuni.c: Map KP_Separator to ','. diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 18580cabaa..5cc958b85b 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +Wed Nov 12 20:57:50 2003 Matthias Clasen + + * gtk/gtkicontheme.h (enum GtkIconLookupFlags): Correct + the definition of the values. (#123361, Marco Pesenti Gritti) + Wed Nov 12 20:54:02 2003 Matthias Clasen * gdk/gdkkeyuni.c: Map KP_Separator to ','. diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 18580cabaa..5cc958b85b 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,8 @@ +Wed Nov 12 20:57:50 2003 Matthias Clasen + + * gtk/gtkicontheme.h (enum GtkIconLookupFlags): Correct + the definition of the values. (#123361, Marco Pesenti Gritti) + Wed Nov 12 20:54:02 2003 Matthias Clasen * gdk/gdkkeyuni.c: Map KP_Separator to ','. diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 18580cabaa..5cc958b85b 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,8 @@ +Wed Nov 12 20:57:50 2003 Matthias Clasen + + * gtk/gtkicontheme.h (enum GtkIconLookupFlags): Correct + the definition of the values. (#123361, Marco Pesenti Gritti) + Wed Nov 12 20:54:02 2003 Matthias Clasen * gdk/gdkkeyuni.c: Map KP_Separator to ','. diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 18580cabaa..5cc958b85b 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,8 @@ +Wed Nov 12 20:57:50 2003 Matthias Clasen + + * gtk/gtkicontheme.h (enum GtkIconLookupFlags): Correct + the definition of the values. (#123361, Marco Pesenti Gritti) + Wed Nov 12 20:54:02 2003 Matthias Clasen * gdk/gdkkeyuni.c: Map KP_Separator to ','. diff --git a/gtk/gtkicontheme.h b/gtk/gtkicontheme.h index 3c789e1a15..6e418c0c0c 100644 --- a/gtk/gtkicontheme.h +++ b/gtk/gtkicontheme.h @@ -71,9 +71,9 @@ struct _GtkIconThemeClass **/ typedef enum { - GTK_ICON_LOOKUP_NO_SVG = 0 << 0, - GTK_ICON_LOOKUP_FORCE_SVG = 0 << 1, - GTK_ICON_LOOKUP_USE_BUILTIN = 0 << 2 + GTK_ICON_LOOKUP_NO_SVG = 1 << 0, + GTK_ICON_LOOKUP_FORCE_SVG = 1 << 1, + GTK_ICON_LOOKUP_USE_BUILTIN = 1 << 2 } GtkIconLookupFlags; #define GTK_ICON_THEME_ERROR gtk_icon_theme_error_quark () -- 2.30.2